home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / smaltalk.lha / smalltalk-1.1.1 / config / m-sequent.h < prev    next >
C/C++ Source or Header  |  1991-09-12  |  2KB  |  51 lines

  1. /*
  2.  * Copyright (C) 1990, 1991 Free Software Foundation, Inc.
  3.  * Written by Steve Byrne.
  4.  *
  5.  * This file is part of GNU Smalltalk.
  6.  *
  7.  * GNU Smalltalk is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the Free
  9.  * Software Foundation; either version 1, or (at your option) any later 
  10.  * version.  GNU Smalltalk is distributed in the hope that it will be useful, 
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of 
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General 
  13.  * Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License along with
  16.  * GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  17.  * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  18.  */
  19.  
  20. /* Define this to override the usage of "-lm" in ymakefile */
  21. #define DEFAULT_LIBRARIES -lm -lseq
  22.  
  23. /* This is for older C compilers without "void *", etc. */
  24. #define OLDCC
  25.  
  26. /* Define this on machines in which the most significant byte of a long
  27.  * integer has the lowest address, remove it for machines on which the
  28.  * least significant byte of a long integer occurs at the lowest
  29.  * address.
  30.  */
  31. /* #define BIG_ENDIAN */
  32.  
  33.  
  34. #ifndef FOR_MAKE
  35. /* This is the return type of routines that are declarable as signal handlers.
  36.  * may be void for some implementations
  37.  */
  38. typedef int    signalType;
  39.  
  40. #define BSD_SIGNALS
  41.  
  42. /* Pure BSD machines do not have memcpy.  Use "#ifndef memcpy" to decide to
  43.  * include memory.h.
  44.  */
  45. # define memcpy(dest,src,len) (bcopy(src,dest,len))
  46.  
  47. /* Make sure to use bcopy instead of memcpy */
  48. #define USE_BCOPY 1
  49.  
  50. #endif /* FOR_MAKE */
  51.